From 19bfd597b44a6efc4f904b96a3c6b55261dc74f2 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Mon, 7 May 2007 13:52:50 +0100 Subject: [PATCH] xenstat: Remove the "vbd-%d-%d is a VBD." debugging statement. Signed-off-by: Keir Fraser --- tools/xenstat/libxenstat/src/xenstat_linux.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/xenstat/libxenstat/src/xenstat_linux.c b/tools/xenstat/libxenstat/src/xenstat_linux.c index cc94dbadd3..2d442fb386 100644 --- a/tools/xenstat/libxenstat/src/xenstat_linux.c +++ b/tools/xenstat/libxenstat/src/xenstat_linux.c @@ -206,10 +206,8 @@ int xenstat_collect_vbds(xenstat_node * node) ret = sscanf(dp->d_name, "vbd-%u-%u", &domid, &vbd.dev); - if (ret != 2) { + if (ret != 2) continue; - } - printf("%s is VBD.\n",dp->d_name); domain = xenstat_node_domain(node, domid); if (domain == NULL) { -- 2.30.2